home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Critical Thinking Skills / Workplace Effectiveness: Critical Thinking Skills.iso / pc / Files / Rewind.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-09-14  |  514 b   |  40 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       goKeyboard()
  8.     #keyboard:
  9.       exitKeyboard()
  10.       leaveThisMovie()
  11.   end case
  12. end
  13.  
  14. on goBack
  15.   stopSound2()
  16.   case gSection of
  17.     #keyboard:
  18.       exitKeyboard()
  19.       goIntro()
  20.   end case
  21. end
  22.  
  23. on leaveThisMovie
  24.   if iAmActivated(gMasterData) then
  25.     getPrintData()
  26.   end if
  27.   stopSound2()
  28.   cursor(4)
  29.   go(1, "Island1")
  30. end
  31.  
  32. on notePadButton
  33.   DoNotepad()
  34. end
  35.  
  36. on continueNext
  37.   stopSound2()
  38.   go(the frame + 1)
  39. end
  40.